renamed namespace as per #1670

This commit is contained in:
fgerlits 2006-05-12 21:49:03 +00:00
parent 62d4276521
commit f4baa94c10
60 changed files with 136 additions and 135 deletions

View file

@ -49,7 +49,7 @@
// forward declaration of friend class // forward declaration of friend class
namespace LiveSupport { namespace LiveSupport {
namespace Storage { namespace StorageClient {
class TestStorageClient; class TestStorageClient;
} } } }
@ -178,7 +178,7 @@ class SearchCriteria
/** /**
* Give access of private members to the TestStorageClient. * Give access of private members to the TestStorageClient.
*/ */
friend class LiveSupport::Storage::TestStorageClient; friend class LiveSupport::StorageClient::TestStorageClient;
public: public:

View file

@ -43,11 +43,11 @@
#include <stdexcept> #include <stdexcept>
#include "LiveSupport/Core/Configurable.h" #include "LiveSupport/Core/Configurable.h"
#include "LiveSupport/Storage/StorageClientInterface.h" #include "LiveSupport/StorageClient/StorageClientInterface.h"
namespace LiveSupport { namespace LiveSupport {
namespace Storage { namespace StorageClient {
using namespace LiveSupport; using namespace LiveSupport;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
@ -193,7 +193,7 @@ class StorageClientFactory :
/* ====================================================== function prototypes */ /* ====================================================== function prototypes */
} // namespace Storage } // namespace StorageClient
} // namespace LiveSupport } // namespace LiveSupport
#endif // LiveSupport_Storage_StorageClientFactory_h #endif // LiveSupport_Storage_StorageClientFactory_h

View file

@ -50,7 +50,7 @@
namespace LiveSupport { namespace LiveSupport {
namespace Storage { namespace StorageClient {
using namespace Core; using namespace Core;
@ -706,7 +706,7 @@ class StorageClientInterface
/* ====================================================== function prototypes */ /* ====================================================== function prototypes */
} // namespace Storage } // namespace StorageClient
} // namespace LiveSupport } // namespace LiveSupport
#endif // LiveSupport_Storage_StorageClientInterface_h #endif // LiveSupport_Storage_StorageClientInterface_h

View file

@ -34,13 +34,13 @@
#endif #endif
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "TestStorageClient.h" #include "TestStorageClient.h"
#include "WebStorageClient.h" #include "WebStorageClient.h"
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
/* =================================================== local data structures */ /* =================================================== local data structures */

View file

@ -46,15 +46,15 @@
#include "LiveSupport/Authentication/AuthenticationClientFactory.h" #include "LiveSupport/Authentication/AuthenticationClientFactory.h"
#include "LiveSupport/Authentication/AuthenticationClientInterface.h" #include "LiveSupport/Authentication/AuthenticationClientInterface.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/Storage/StorageClientInterface.h" #include "LiveSupport/StorageClient/StorageClientInterface.h"
#include "StorageClientFactoryTest.h" #include "StorageClientFactoryTest.h"
using namespace std; using namespace std;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Authentication; using namespace LiveSupport::Authentication;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
/* =================================================== local data structures */ /* =================================================== local data structures */

View file

@ -44,7 +44,7 @@
namespace LiveSupport { namespace LiveSupport {
namespace Storage { namespace StorageClient {
/* ================================================================ constants */ /* ================================================================ constants */
@ -100,7 +100,7 @@ class StorageClientFactoryTest : public CPPUNIT_NS::TestFixture
/* ====================================================== function prototypes */ /* ====================================================== function prototypes */
} // namespace Storage } // namespace StorageClient
} // namespace LiveSupport } // namespace LiveSupport
#endif // StorageClientFactoryTest_h #endif // StorageClientFactoryTest_h

View file

@ -51,7 +51,7 @@
using namespace boost::posix_time; using namespace boost::posix_time;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
/* =================================================== local data structures */ /* =================================================== local data structures */
@ -940,10 +940,11 @@ TestStorageClient :: satisfiesCondition(
* Separate a key into the metadata name and its namespace * Separate a key into the metadata name and its namespace
*----------------------------------------------------------------------------*/ *----------------------------------------------------------------------------*/
void void
LiveSupport::Storage :: separateNameAndNameSpace(const std::string & key, LiveSupport::StorageClient :: separateNameAndNameSpace(
std::string & name, const std::string & key,
std::string & prefix) std::string & name,
throw () std::string & prefix)
throw ()
{ {
unsigned int colonPosition = key.find(':'); unsigned int colonPosition = key.find(':');

View file

@ -43,11 +43,11 @@
#include <stdexcept> #include <stdexcept>
#include "LiveSupport/Core/Configurable.h" #include "LiveSupport/Core/Configurable.h"
#include "LiveSupport/Storage/StorageClientInterface.h" #include "LiveSupport/StorageClient/StorageClientInterface.h"
namespace LiveSupport { namespace LiveSupport {
namespace Storage { namespace StorageClient {
using namespace LiveSupport; using namespace LiveSupport;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
@ -824,7 +824,7 @@ class TestStorageClient :
std::string & prefix) std::string & prefix)
throw (); throw ();
} // namespace Storage } // namespace StorageClient
} // namespace LiveSupport } // namespace LiveSupport
#endif // TestStorageClient_h #endif // TestStorageClient_h

View file

@ -51,7 +51,7 @@
using namespace std; using namespace std;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
/* =================================================== local data structures */ /* =================================================== local data structures */

View file

@ -44,7 +44,7 @@
namespace LiveSupport { namespace LiveSupport {
namespace Storage { namespace StorageClient {
/* ================================================================ constants */ /* ================================================================ constants */
@ -218,7 +218,7 @@ class TestStorageClientTest : public CPPUNIT_NS::TestFixture
/* ====================================================== function prototypes */ /* ====================================================== function prototypes */
} // namespace Storage } // namespace StorageClient
} // namespace LiveSupport } // namespace LiveSupport
#endif // TestStorageClientTest_h #endif // TestStorageClientTest_h

View file

@ -60,7 +60,7 @@ using namespace boost::posix_time;
using namespace XmlRpc; using namespace XmlRpc;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
/* =================================================== local data structures */ /* =================================================== local data structures */

View file

@ -46,11 +46,11 @@
#include "LiveSupport/Core/Playlist.h" #include "LiveSupport/Core/Playlist.h"
#include "LiveSupport/Core/Configurable.h" #include "LiveSupport/Core/Configurable.h"
#include "LiveSupport/Storage/StorageClientInterface.h" #include "LiveSupport/StorageClient/StorageClientInterface.h"
namespace LiveSupport { namespace LiveSupport {
namespace Storage { namespace StorageClient {
using namespace XmlRpc; using namespace XmlRpc;
@ -908,7 +908,7 @@ class WebStorageClient :
/* ====================================================== function prototypes */ /* ====================================================== function prototypes */
} // namespace Core } // namespace StorageClient
} // namespace LiveSupport } // namespace LiveSupport
#endif // WebStorageClient_h #endif // WebStorageClient_h

View file

@ -61,7 +61,7 @@ using namespace boost::posix_time;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Authentication; using namespace LiveSupport::Authentication;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
/* =================================================== local data structures */ /* =================================================== local data structures */

View file

@ -47,7 +47,7 @@
#include "LiveSupport/Authentication/AuthenticationClientFactory.h" #include "LiveSupport/Authentication/AuthenticationClientFactory.h"
namespace LiveSupport { namespace LiveSupport {
namespace Storage { namespace StorageClient {
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Authentication; using namespace LiveSupport::Authentication;
@ -234,7 +234,7 @@ class WebStorageClientTest : public BaseTestMethod
/* ====================================================== function prototypes */ /* ====================================================== function prototypes */
} // namespace Storage } // namespace StorageClient
} // namespace LiveSupport } // namespace LiveSupport
#endif // WebStorageClientTest_h #endif // WebStorageClientTest_h

View file

@ -45,7 +45,7 @@
#include "LiveSupport/Core/TimeConversion.h" #include "LiveSupport/Core/TimeConversion.h"
#include "LiveSupport/PlaylistExecutor/AudioPlayerFactory.h" #include "LiveSupport/PlaylistExecutor/AudioPlayerFactory.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/Authentication/AuthenticationClientFactory.h" #include "LiveSupport/Authentication/AuthenticationClientFactory.h"
#include "LiveSupport/Core/AudioClip.h" #include "LiveSupport/Core/AudioClip.h"
#include "LiveSupport/Core/Playlist.h" #include "LiveSupport/Core/Playlist.h"
@ -55,7 +55,7 @@
using namespace LiveSupport::PlaylistExecutor; using namespace LiveSupport::PlaylistExecutor;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Authentication; using namespace LiveSupport::Authentication;
using namespace LiveSupport::gLiveSupport; using namespace LiveSupport::gLiveSupport;

View file

@ -37,7 +37,7 @@
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Widgets; using namespace LiveSupport::Widgets;
using namespace LiveSupport::GLiveSupport; using namespace LiveSupport::GLiveSupport;

View file

@ -37,7 +37,7 @@
/* ============================================================ include files */ /* ============================================================ include files */
#include "LiveSupport/Core/LocalizedObject.h" #include "LiveSupport/Core/LocalizedObject.h"
#include "LiveSupport/Storage/StorageClientInterface.h" #include "LiveSupport/StorageClient/StorageClientInterface.h"
#include "LiveSupport/Widgets/RadioButtons.h" #include "LiveSupport/Widgets/RadioButtons.h"
@ -45,7 +45,7 @@ namespace LiveSupport {
namespace GLiveSupport { namespace GLiveSupport {
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Widgets; using namespace LiveSupport::Widgets;
/* ================================================================ constants */ /* ================================================================ constants */

View file

@ -56,7 +56,7 @@
#include "LiveSupport/Core/LocalizedObject.h" #include "LiveSupport/Core/LocalizedObject.h"
#include "LiveSupport/Authentication/AuthenticationClientFactory.h" #include "LiveSupport/Authentication/AuthenticationClientFactory.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/SchedulerClient/SchedulerClientFactory.h" #include "LiveSupport/SchedulerClient/SchedulerClientFactory.h"
#include "LiveSupport/PlaylistExecutor/AudioPlayerFactory.h" #include "LiveSupport/PlaylistExecutor/AudioPlayerFactory.h"
#include "LiveSupport/Core/TimeConversion.h" #include "LiveSupport/Core/TimeConversion.h"
@ -71,7 +71,7 @@ using namespace boost::posix_time;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Authentication; using namespace LiveSupport::Authentication;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::SchedulerClient; using namespace LiveSupport::SchedulerClient;
using namespace LiveSupport::Widgets; using namespace LiveSupport::Widgets;
using namespace LiveSupport::GLiveSupport; using namespace LiveSupport::GLiveSupport;

View file

@ -51,7 +51,7 @@
#include "LiveSupport/Core/MetadataTypeContainer.h" #include "LiveSupport/Core/MetadataTypeContainer.h"
#include "LiveSupport/Core/OptionsContainer.h" #include "LiveSupport/Core/OptionsContainer.h"
#include "LiveSupport/Authentication/AuthenticationClientInterface.h" #include "LiveSupport/Authentication/AuthenticationClientInterface.h"
#include "LiveSupport/Storage/StorageClientInterface.h" #include "LiveSupport/StorageClient/StorageClientInterface.h"
#include "LiveSupport/SchedulerClient/SchedulerClientInterface.h" #include "LiveSupport/SchedulerClient/SchedulerClientInterface.h"
#include "LiveSupport/PlaylistExecutor/AudioPlayerInterface.h" #include "LiveSupport/PlaylistExecutor/AudioPlayerInterface.h"
#include "LiveSupport/Widgets/WidgetFactory.h" #include "LiveSupport/Widgets/WidgetFactory.h"
@ -65,7 +65,7 @@ namespace GLiveSupport {
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::SchedulerClient; using namespace LiveSupport::SchedulerClient;
using namespace LiveSupport::Authentication; using namespace LiveSupport::Authentication;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::PlaylistExecutor; using namespace LiveSupport::PlaylistExecutor;
using namespace LiveSupport::Widgets; using namespace LiveSupport::Widgets;

View file

@ -38,7 +38,7 @@
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Widgets; using namespace LiveSupport::Widgets;
using namespace LiveSupport::GLiveSupport; using namespace LiveSupport::GLiveSupport;

View file

@ -42,8 +42,8 @@
#include <string> #include <string>
#include "LiveSupport/Storage/StorageClientInterface.h" #include "LiveSupport/StorageClient/StorageClientInterface.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "ScheduleInterface.h" #include "ScheduleInterface.h"
#include "ScheduleFactory.h" #include "ScheduleFactory.h"
#include "LiveSupport/Core/XmlRpcTools.h" #include "LiveSupport/Core/XmlRpcTools.h"
@ -56,7 +56,7 @@ using namespace boost::posix_time;
using namespace LiveSupport; using namespace LiveSupport;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;

View file

@ -45,7 +45,7 @@
#include <XmlRpcValue.h> #include <XmlRpcValue.h>
#include "LiveSupport/Db/ConnectionManagerFactory.h" #include "LiveSupport/Db/ConnectionManagerFactory.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/Authentication/AuthenticationClientFactory.h" #include "LiveSupport/Authentication/AuthenticationClientFactory.h"
#include "LiveSupport/Core/XmlRpcTools.h" #include "LiveSupport/Core/XmlRpcTools.h"
@ -56,7 +56,7 @@
using namespace std; using namespace std;
using namespace LiveSupport::Db; using namespace LiveSupport::Db;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;
using namespace LiveSupport::Authentication; using namespace LiveSupport::Authentication;

View file

@ -42,8 +42,8 @@
#include <string> #include <string>
#include "LiveSupport/Storage/StorageClientInterface.h" #include "LiveSupport/StorageClient/StorageClientInterface.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "ScheduleInterface.h" #include "ScheduleInterface.h"
#include "ScheduleFactory.h" #include "ScheduleFactory.h"
#include "LiveSupport/Core/XmlRpcTools.h" #include "LiveSupport/Core/XmlRpcTools.h"
@ -56,7 +56,7 @@ using namespace boost::posix_time;
using namespace LiveSupport; using namespace LiveSupport;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;

View file

@ -45,7 +45,7 @@
#include <XmlRpcValue.h> #include <XmlRpcValue.h>
#include "LiveSupport/Db/ConnectionManagerFactory.h" #include "LiveSupport/Db/ConnectionManagerFactory.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/Authentication/AuthenticationClientFactory.h" #include "LiveSupport/Authentication/AuthenticationClientFactory.h"
#include "SchedulerDaemon.h" #include "SchedulerDaemon.h"
@ -56,7 +56,7 @@
using namespace XmlRpc; using namespace XmlRpc;
using namespace LiveSupport::Db; using namespace LiveSupport::Db;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;
using namespace LiveSupport::Authentication; using namespace LiveSupport::Authentication;

View file

@ -42,8 +42,8 @@
#include <string> #include <string>
#include "LiveSupport/Storage/StorageClientInterface.h" #include "LiveSupport/StorageClient/StorageClientInterface.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "ScheduleInterface.h" #include "ScheduleInterface.h"
#include "ScheduleFactory.h" #include "ScheduleFactory.h"
#include "LiveSupport/Core/XmlRpcTools.h" #include "LiveSupport/Core/XmlRpcTools.h"
@ -56,7 +56,7 @@ using namespace boost::posix_time;
using namespace LiveSupport; using namespace LiveSupport;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;

View file

@ -45,7 +45,7 @@
#include <XmlRpcValue.h> #include <XmlRpcValue.h>
#include "LiveSupport/Db/ConnectionManagerFactory.h" #include "LiveSupport/Db/ConnectionManagerFactory.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/Authentication/AuthenticationClientFactory.h" #include "LiveSupport/Authentication/AuthenticationClientFactory.h"
#include "SchedulerDaemon.h" #include "SchedulerDaemon.h"
@ -54,7 +54,7 @@
using namespace LiveSupport::Db; using namespace LiveSupport::Db;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;
using namespace LiveSupport::Authentication; using namespace LiveSupport::Authentication;

View file

@ -36,8 +36,8 @@
#include <string> #include <string>
#include "LiveSupport/Storage/StorageClientInterface.h" #include "LiveSupport/StorageClient/StorageClientInterface.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/Core/XmlRpcTools.h" #include "LiveSupport/Core/XmlRpcTools.h"
#include "DisplayAudioClipsMethod.h" #include "DisplayAudioClipsMethod.h"
@ -47,7 +47,7 @@ using namespace boost::posix_time;
using namespace LiveSupport; using namespace LiveSupport;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;

View file

@ -46,7 +46,7 @@
#include <XmlRpcValue.h> #include <XmlRpcValue.h>
#include "LiveSupport/Db/ConnectionManagerFactory.h" #include "LiveSupport/Db/ConnectionManagerFactory.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/Authentication/AuthenticationClientFactory.h" #include "LiveSupport/Authentication/AuthenticationClientFactory.h"
#include "SchedulerDaemon.h" #include "SchedulerDaemon.h"
@ -55,7 +55,7 @@
using namespace LiveSupport::Db; using namespace LiveSupport::Db;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;
using namespace LiveSupport::Authentication; using namespace LiveSupport::Authentication;

View file

@ -42,8 +42,8 @@
#include <string> #include <string>
#include "LiveSupport/Storage/StorageClientInterface.h" #include "LiveSupport/StorageClient/StorageClientInterface.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "ScheduleInterface.h" #include "ScheduleInterface.h"
#include "ScheduleFactory.h" #include "ScheduleFactory.h"
#include "LiveSupport/Core/XmlRpcTools.h" #include "LiveSupport/Core/XmlRpcTools.h"
@ -56,7 +56,7 @@ using namespace boost::posix_time;
using namespace LiveSupport; using namespace LiveSupport;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;

View file

@ -45,7 +45,7 @@
#include <XmlRpcValue.h> #include <XmlRpcValue.h>
#include "LiveSupport/Db/ConnectionManagerFactory.h" #include "LiveSupport/Db/ConnectionManagerFactory.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/Authentication/AuthenticationClientFactory.h" #include "LiveSupport/Authentication/AuthenticationClientFactory.h"
#include "SchedulerDaemon.h" #include "SchedulerDaemon.h"
@ -54,7 +54,7 @@
using namespace LiveSupport::Db; using namespace LiveSupport::Db;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;
using namespace LiveSupport::Authentication; using namespace LiveSupport::Authentication;

View file

@ -36,8 +36,8 @@
#include <string> #include <string>
#include "LiveSupport/Storage/StorageClientInterface.h" #include "LiveSupport/StorageClient/StorageClientInterface.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/Core/XmlRpcTools.h" #include "LiveSupport/Core/XmlRpcTools.h"
#include "DisplayPlaylistsMethod.h" #include "DisplayPlaylistsMethod.h"
@ -47,7 +47,7 @@ using namespace boost::posix_time;
using namespace LiveSupport; using namespace LiveSupport;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;

View file

@ -46,7 +46,7 @@
#include <XmlRpcValue.h> #include <XmlRpcValue.h>
#include "LiveSupport/Db/ConnectionManagerFactory.h" #include "LiveSupport/Db/ConnectionManagerFactory.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/Authentication/AuthenticationClientFactory.h" #include "LiveSupport/Authentication/AuthenticationClientFactory.h"
#include "SchedulerDaemon.h" #include "SchedulerDaemon.h"
@ -55,7 +55,7 @@
using namespace LiveSupport::Db; using namespace LiveSupport::Db;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;
using namespace LiveSupport::Authentication; using namespace LiveSupport::Authentication;

View file

@ -45,7 +45,7 @@
#include <XmlRpcValue.h> #include <XmlRpcValue.h>
#include "LiveSupport/Db/ConnectionManagerFactory.h" #include "LiveSupport/Db/ConnectionManagerFactory.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/Authentication/AuthenticationClientFactory.h" #include "LiveSupport/Authentication/AuthenticationClientFactory.h"
#include "SchedulerDaemon.h" #include "SchedulerDaemon.h"
@ -58,7 +58,7 @@ using namespace std;
using namespace XmlRpc; using namespace XmlRpc;
using namespace LiveSupport::Db; using namespace LiveSupport::Db;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;
using namespace LiveSupport::Authentication; using namespace LiveSupport::Authentication;

View file

@ -45,7 +45,7 @@
#include <XmlRpcValue.h> #include <XmlRpcValue.h>
#include "LiveSupport/Db/ConnectionManagerFactory.h" #include "LiveSupport/Db/ConnectionManagerFactory.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/Authentication/AuthenticationClientFactory.h" #include "LiveSupport/Authentication/AuthenticationClientFactory.h"
#include "SchedulerDaemon.h" #include "SchedulerDaemon.h"
@ -57,7 +57,7 @@
using namespace std; using namespace std;
using namespace LiveSupport::Db; using namespace LiveSupport::Db;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;
using namespace LiveSupport::Authentication; using namespace LiveSupport::Authentication;

View file

@ -43,8 +43,8 @@
#include <boost/date_time/posix_time/posix_time.hpp> #include <boost/date_time/posix_time/posix_time.hpp>
#include <boost/date_time/gregorian/gregorian.hpp> #include <boost/date_time/gregorian/gregorian.hpp>
#include "LiveSupport/Storage/StorageClientInterface.h" #include "LiveSupport/StorageClient/StorageClientInterface.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/Core/TimeConversion.h" #include "LiveSupport/Core/TimeConversion.h"
#include "LiveSupport/Core/XmlRpcTools.h" #include "LiveSupport/Core/XmlRpcTools.h"
@ -56,7 +56,7 @@ using namespace boost::gregorian;
using namespace LiveSupport; using namespace LiveSupport;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;

View file

@ -42,8 +42,8 @@
#include <string> #include <string>
#include "LiveSupport/Storage/StorageClientInterface.h" #include "LiveSupport/StorageClient/StorageClientInterface.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "ScheduleInterface.h" #include "ScheduleInterface.h"
#include "ScheduleFactory.h" #include "ScheduleFactory.h"
#include "LiveSupport/Core/XmlRpcTools.h" #include "LiveSupport/Core/XmlRpcTools.h"
@ -56,7 +56,7 @@ using namespace boost::posix_time;
using namespace LiveSupport; using namespace LiveSupport;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;

View file

@ -45,7 +45,7 @@
#include <XmlRpcValue.h> #include <XmlRpcValue.h>
#include "LiveSupport/Db/ConnectionManagerFactory.h" #include "LiveSupport/Db/ConnectionManagerFactory.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/Authentication/AuthenticationClientFactory.h" #include "LiveSupport/Authentication/AuthenticationClientFactory.h"
#include "LiveSupport/Core/XmlRpcTools.h" #include "LiveSupport/Core/XmlRpcTools.h"
@ -55,7 +55,7 @@
using namespace LiveSupport::Db; using namespace LiveSupport::Db;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;
using namespace LiveSupport::Authentication; using namespace LiveSupport::Authentication;

View file

@ -42,7 +42,7 @@
#include "LiveSupport/Core/SessionId.h" #include "LiveSupport/Core/SessionId.h"
#include "LiveSupport/Core/ScheduleEntry.h" #include "LiveSupport/Core/ScheduleEntry.h"
#include "LiveSupport/Storage/StorageClientInterface.h" #include "LiveSupport/StorageClient/StorageClientInterface.h"
#include "LiveSupport/PlaylistExecutor/AudioPlayerInterface.h" #include "LiveSupport/PlaylistExecutor/AudioPlayerInterface.h"
#include "LiveSupport/EventScheduler/ScheduledEventInterface.h" #include "LiveSupport/EventScheduler/ScheduledEventInterface.h"
@ -58,7 +58,7 @@ using namespace LiveSupport::Core;
using namespace LiveSupport::PlaylistExecutor; using namespace LiveSupport::PlaylistExecutor;
using namespace LiveSupport::EventScheduler; using namespace LiveSupport::EventScheduler;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
/* ================================================================ constants */ /* ================================================================ constants */

View file

@ -41,7 +41,7 @@
#endif #endif
#include "LiveSupport/Core/SessionId.h" #include "LiveSupport/Core/SessionId.h"
#include "LiveSupport/Storage/StorageClientInterface.h" #include "LiveSupport/StorageClient/StorageClientInterface.h"
#include "LiveSupport/PlaylistExecutor/AudioPlayerInterface.h" #include "LiveSupport/PlaylistExecutor/AudioPlayerInterface.h"
#include "LiveSupport/EventScheduler/EventContainerInterface.h" #include "LiveSupport/EventScheduler/EventContainerInterface.h"
@ -58,7 +58,7 @@ using namespace LiveSupport;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::PlaylistExecutor; using namespace LiveSupport::PlaylistExecutor;
using namespace LiveSupport::EventScheduler; using namespace LiveSupport::EventScheduler;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
/* ================================================================ constants */ /* ================================================================ constants */

View file

@ -44,7 +44,7 @@
#include "LiveSupport/Core/TimeConversion.h" #include "LiveSupport/Core/TimeConversion.h"
#include "LiveSupport/Db/ConnectionManagerFactory.h" #include "LiveSupport/Db/ConnectionManagerFactory.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/PlaylistExecutor/AudioPlayerFactory.h" #include "LiveSupport/PlaylistExecutor/AudioPlayerFactory.h"
#include "LiveSupport/Authentication/AuthenticationClientFactory.h" #include "LiveSupport/Authentication/AuthenticationClientFactory.h"
#include "PlayLogFactory.h" #include "PlayLogFactory.h"
@ -58,7 +58,7 @@ using namespace boost::posix_time;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Db; using namespace LiveSupport::Db;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::PlaylistExecutor; using namespace LiveSupport::PlaylistExecutor;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;
using namespace LiveSupport::Authentication; using namespace LiveSupport::Authentication;

View file

@ -45,7 +45,7 @@
#include "LiveSupport/Authentication/AuthenticationClientInterface.h" #include "LiveSupport/Authentication/AuthenticationClientInterface.h"
#include "LiveSupport/Core/SessionId.h" #include "LiveSupport/Core/SessionId.h"
#include "LiveSupport/Storage/StorageClientInterface.h" #include "LiveSupport/StorageClient/StorageClientInterface.h"
#include "LiveSupport/PlaylistExecutor/AudioPlayerInterface.h" #include "LiveSupport/PlaylistExecutor/AudioPlayerInterface.h"
#include "ScheduleInterface.h" #include "ScheduleInterface.h"
#include "PlayLogInterface.h" #include "PlayLogInterface.h"
@ -62,7 +62,7 @@ using namespace LiveSupport::Core;
using namespace LiveSupport::PlaylistExecutor; using namespace LiveSupport::PlaylistExecutor;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;
using namespace LiveSupport::Authentication; using namespace LiveSupport::Authentication;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
/* ================================================================ constants */ /* ================================================================ constants */

View file

@ -44,7 +44,7 @@
#include "LiveSupport/Core/TimeConversion.h" #include "LiveSupport/Core/TimeConversion.h"
#include "LiveSupport/Authentication/AuthenticationClientFactory.h" #include "LiveSupport/Authentication/AuthenticationClientFactory.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/PlaylistExecutor/AudioPlayerFactory.h" #include "LiveSupport/PlaylistExecutor/AudioPlayerFactory.h"
#include "SchedulerDaemon.h" #include "SchedulerDaemon.h"
@ -57,7 +57,7 @@ using namespace boost::posix_time;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Authentication; using namespace LiveSupport::Authentication;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::PlaylistExecutor; using namespace LiveSupport::PlaylistExecutor;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;

View file

@ -43,7 +43,7 @@
#include <cppunit/extensions/HelperMacros.h> #include <cppunit/extensions/HelperMacros.h>
#include "LiveSupport/Authentication/AuthenticationClientInterface.h" #include "LiveSupport/Authentication/AuthenticationClientInterface.h"
#include "LiveSupport/Storage/StorageClientInterface.h" #include "LiveSupport/StorageClient/StorageClientInterface.h"
#include "LiveSupport/PlaylistExecutor/AudioPlayerInterface.h" #include "LiveSupport/PlaylistExecutor/AudioPlayerInterface.h"
#include "PlayLogInterface.h" #include "PlayLogInterface.h"

View file

@ -42,8 +42,8 @@
#include <string> #include <string>
#include "LiveSupport/Storage/StorageClientInterface.h" #include "LiveSupport/StorageClient/StorageClientInterface.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "ScheduleInterface.h" #include "ScheduleInterface.h"
#include "ScheduleFactory.h" #include "ScheduleFactory.h"
#include "LiveSupport/Core/XmlRpcTools.h" #include "LiveSupport/Core/XmlRpcTools.h"
@ -56,7 +56,7 @@ using namespace boost::posix_time;
using namespace LiveSupport; using namespace LiveSupport;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;

View file

@ -45,7 +45,7 @@
#include <XmlRpcValue.h> #include <XmlRpcValue.h>
#include "LiveSupport/Db/ConnectionManagerFactory.h" #include "LiveSupport/Db/ConnectionManagerFactory.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/Authentication/AuthenticationClientFactory.h" #include "LiveSupport/Authentication/AuthenticationClientFactory.h"
#include "LiveSupport/Core/XmlRpcTools.h" #include "LiveSupport/Core/XmlRpcTools.h"
@ -58,7 +58,7 @@
using namespace std; using namespace std;
using namespace LiveSupport::Db; using namespace LiveSupport::Db;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;
using namespace LiveSupport::Authentication; using namespace LiveSupport::Authentication;

View file

@ -47,7 +47,7 @@
#include "ScheduleFactory.h" #include "ScheduleFactory.h"
#include "LiveSupport/Core/TimeConversion.h" #include "LiveSupport/Core/TimeConversion.h"
#include "LiveSupport/Authentication/AuthenticationClientFactory.h" #include "LiveSupport/Authentication/AuthenticationClientFactory.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "SchedulerDaemon.h" #include "SchedulerDaemon.h"
#include "UploadPlaylistMethod.h" #include "UploadPlaylistMethod.h"
@ -58,7 +58,7 @@
using namespace boost::posix_time; using namespace boost::posix_time;
using namespace LiveSupport::Authentication; using namespace LiveSupport::Authentication;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;

View file

@ -46,7 +46,7 @@
#include "LiveSupport/Core/TimeConversion.h" #include "LiveSupport/Core/TimeConversion.h"
#include "LiveSupport/Db/ConnectionManagerFactory.h" #include "LiveSupport/Db/ConnectionManagerFactory.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/Authentication/AuthenticationClientFactory.h" #include "LiveSupport/Authentication/AuthenticationClientFactory.h"
#include "SchedulerDaemon.h" #include "SchedulerDaemon.h"

View file

@ -33,14 +33,14 @@
#include "configure.h" #include "configure.h"
#endif #endif
#include "LiveSupport/Storage/StorageClientInterface.h" #include "LiveSupport/StorageClient/StorageClientInterface.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/Core/XmlRpcTools.h" #include "LiveSupport/Core/XmlRpcTools.h"
#include "ResetStorageMethod.h" #include "ResetStorageMethod.h"
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;
/* =================================================== local data structures */ /* =================================================== local data structures */

View file

@ -42,8 +42,8 @@
#include <string> #include <string>
#include "LiveSupport/Storage/StorageClientInterface.h" #include "LiveSupport/StorageClient/StorageClientInterface.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/Core/XmlRpcTools.h" #include "LiveSupport/Core/XmlRpcTools.h"
#include "RevertEditedPlaylistMethod.h" #include "RevertEditedPlaylistMethod.h"
@ -51,7 +51,7 @@
using namespace LiveSupport; using namespace LiveSupport;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;

View file

@ -45,7 +45,7 @@
#include <XmlRpcValue.h> #include <XmlRpcValue.h>
#include "LiveSupport/Db/ConnectionManagerFactory.h" #include "LiveSupport/Db/ConnectionManagerFactory.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/Authentication/AuthenticationClientFactory.h" #include "LiveSupport/Authentication/AuthenticationClientFactory.h"
#include "SchedulerDaemon.h" #include "SchedulerDaemon.h"
@ -58,7 +58,7 @@
using namespace std; using namespace std;
using namespace LiveSupport::Db; using namespace LiveSupport::Db;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;
using namespace LiveSupport::Authentication; using namespace LiveSupport::Authentication;

View file

@ -42,8 +42,8 @@
#include <string> #include <string>
#include "LiveSupport/Storage/StorageClientInterface.h" #include "LiveSupport/StorageClient/StorageClientInterface.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/Core/XmlRpcTools.h" #include "LiveSupport/Core/XmlRpcTools.h"
#include "SavePlaylistMethod.h" #include "SavePlaylistMethod.h"
@ -51,7 +51,7 @@
using namespace LiveSupport; using namespace LiveSupport;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;

View file

@ -46,7 +46,7 @@
#include <XmlRpcException.h> #include <XmlRpcException.h>
#include "LiveSupport/Db/ConnectionManagerFactory.h" #include "LiveSupport/Db/ConnectionManagerFactory.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/Authentication/AuthenticationClientFactory.h" #include "LiveSupport/Authentication/AuthenticationClientFactory.h"
#include "OpenPlaylistForEditingMethod.h" #include "OpenPlaylistForEditingMethod.h"
@ -56,7 +56,7 @@
using namespace std; using namespace std;
using namespace LiveSupport::Db; using namespace LiveSupport::Db;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;
using namespace LiveSupport::Authentication; using namespace LiveSupport::Authentication;

View file

@ -55,7 +55,7 @@
#include "LiveSupport/Db/ConnectionManagerFactory.h" #include "LiveSupport/Db/ConnectionManagerFactory.h"
#include "LiveSupport/Authentication/AuthenticationClientFactory.h" #include "LiveSupport/Authentication/AuthenticationClientFactory.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/PlaylistExecutor/AudioPlayerFactory.h" #include "LiveSupport/PlaylistExecutor/AudioPlayerFactory.h"
#include "ScheduleFactory.h" #include "ScheduleFactory.h"
#include "PlayLogFactory.h" #include "PlayLogFactory.h"
@ -67,7 +67,7 @@ using namespace boost::posix_time;
using namespace LiveSupport; using namespace LiveSupport;
using namespace LiveSupport::Db; using namespace LiveSupport::Db;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;
/* =================================================== local data structures */ /* =================================================== local data structures */

View file

@ -62,7 +62,7 @@
#include "LiveSupport/Core/Configurable.h" #include "LiveSupport/Core/Configurable.h"
#include "LiveSupport/Core/SessionId.h" #include "LiveSupport/Core/SessionId.h"
#include "LiveSupport/Db/ConnectionManagerInterface.h" #include "LiveSupport/Db/ConnectionManagerInterface.h"
#include "LiveSupport/Storage/StorageClientInterface.h" #include "LiveSupport/StorageClient/StorageClientInterface.h"
#include "LiveSupport/Authentication/AuthenticationClientInterface.h" #include "LiveSupport/Authentication/AuthenticationClientInterface.h"
#include "LiveSupport/PlaylistExecutor/AudioPlayerInterface.h" #include "LiveSupport/PlaylistExecutor/AudioPlayerInterface.h"
#include "LiveSupport/EventScheduler/EventScheduler.h" #include "LiveSupport/EventScheduler/EventScheduler.h"
@ -100,7 +100,7 @@ using namespace LiveSupport;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Authentication; using namespace LiveSupport::Authentication;
using namespace LiveSupport::Db; using namespace LiveSupport::Db;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;
using namespace LiveSupport::PlaylistExecutor; using namespace LiveSupport::PlaylistExecutor;

View file

@ -42,8 +42,8 @@
#include <string> #include <string>
#include "LiveSupport/Storage/StorageClientInterface.h" #include "LiveSupport/StorageClient/StorageClientInterface.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/Core/Playlist.h" #include "LiveSupport/Core/Playlist.h"
#include "LiveSupport/Core/FadeInfo.h" #include "LiveSupport/Core/FadeInfo.h"
#include "ScheduleInterface.h" #include "ScheduleInterface.h"
@ -58,7 +58,7 @@ using namespace boost::posix_time;
using namespace LiveSupport; using namespace LiveSupport;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;

View file

@ -45,7 +45,7 @@
#include <XmlRpcValue.h> #include <XmlRpcValue.h>
#include "LiveSupport/Db/ConnectionManagerFactory.h" #include "LiveSupport/Db/ConnectionManagerFactory.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/Authentication/AuthenticationClientFactory.h" #include "LiveSupport/Authentication/AuthenticationClientFactory.h"
#include "LiveSupport/Core/XmlRpcTools.h" #include "LiveSupport/Core/XmlRpcTools.h"
@ -58,7 +58,7 @@
using namespace std; using namespace std;
using namespace LiveSupport::Db; using namespace LiveSupport::Db;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;
using namespace LiveSupport::Authentication; using namespace LiveSupport::Authentication;

View file

@ -43,8 +43,8 @@
#include <string> #include <string>
#include "LiveSupport/Core/XmlRpcTools.h" #include "LiveSupport/Core/XmlRpcTools.h"
#include "LiveSupport/Storage/StorageClientInterface.h" #include "LiveSupport/StorageClient/StorageClientInterface.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "ScheduleInterface.h" #include "ScheduleInterface.h"
#include "ScheduleFactory.h" #include "ScheduleFactory.h"
#include "SchedulerDaemon.h" #include "SchedulerDaemon.h"
@ -57,7 +57,7 @@ using namespace boost::posix_time;
using namespace LiveSupport; using namespace LiveSupport;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;

View file

@ -46,7 +46,7 @@
#include <XmlRpcValue.h> #include <XmlRpcValue.h>
#include "LiveSupport/Db/ConnectionManagerFactory.h" #include "LiveSupport/Db/ConnectionManagerFactory.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/Authentication/AuthenticationClientFactory.h" #include "LiveSupport/Authentication/AuthenticationClientFactory.h"
#include "ScheduleFactory.h" #include "ScheduleFactory.h"
@ -54,7 +54,7 @@
#include "UploadPlaylistMethodTest.h" #include "UploadPlaylistMethodTest.h"
using namespace LiveSupport::Db; using namespace LiveSupport::Db;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;
using namespace LiveSupport::Authentication; using namespace LiveSupport::Authentication;

View file

@ -42,8 +42,8 @@
#include <string> #include <string>
#include "LiveSupport/Storage/StorageClientInterface.h" #include "LiveSupport/StorageClient/StorageClientInterface.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "ScheduleInterface.h" #include "ScheduleInterface.h"
#include "ScheduleFactory.h" #include "ScheduleFactory.h"
#include "LiveSupport/Core/XmlRpcTools.h" #include "LiveSupport/Core/XmlRpcTools.h"
@ -56,7 +56,7 @@ using namespace boost::posix_time;
using namespace LiveSupport; using namespace LiveSupport;
using namespace LiveSupport::Core; using namespace LiveSupport::Core;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;

View file

@ -45,7 +45,7 @@
#include <XmlRpcValue.h> #include <XmlRpcValue.h>
#include "LiveSupport/Db/ConnectionManagerFactory.h" #include "LiveSupport/Db/ConnectionManagerFactory.h"
#include "LiveSupport/Storage/StorageClientFactory.h" #include "LiveSupport/StorageClient/StorageClientFactory.h"
#include "LiveSupport/Authentication/AuthenticationClientFactory.h" #include "LiveSupport/Authentication/AuthenticationClientFactory.h"
#include "LiveSupport/Core/XmlRpcTools.h" #include "LiveSupport/Core/XmlRpcTools.h"
@ -58,7 +58,7 @@
using namespace std; using namespace std;
using namespace LiveSupport::Db; using namespace LiveSupport::Db;
using namespace LiveSupport::Storage; using namespace LiveSupport::StorageClient;
using namespace LiveSupport::Scheduler; using namespace LiveSupport::Scheduler;
using namespace LiveSupport::Authentication; using namespace LiveSupport::Authentication;