summaryrefslogtreecommitdiff
path: root/AudioManagerUtilities/src/CAmCommandLineSingleton.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'AudioManagerUtilities/src/CAmCommandLineSingleton.cpp')
-rw-r--r--AudioManagerUtilities/src/CAmCommandLineSingleton.cpp47
1 files changed, 26 insertions, 21 deletions
diff --git a/AudioManagerUtilities/src/CAmCommandLineSingleton.cpp b/AudioManagerUtilities/src/CAmCommandLineSingleton.cpp
index 1170c31..493b842 100644
--- a/AudioManagerUtilities/src/CAmCommandLineSingleton.cpp
+++ b/AudioManagerUtilities/src/CAmCommandLineSingleton.cpp
@@ -19,41 +19,46 @@
namespace am {
-static TCLAP::CmdLine* pSingleCmdLine = NULL;
+static TCLAP::CmdLine *pSingleCmdLine = NULL;
-CAmCommandLineSingleton::CAmCommandLineSingleton() {
- // TODO Auto-generated constructor stub
+CAmCommandLineSingleton::CAmCommandLineSingleton()
+{
+ // TODO Auto-generated constructor stub
}
-TCLAP::CmdLine* CAmCommandLineSingleton::instanciateOnce(const std::string& message,
- const char delimiter,
- const std::string& version,
- bool helpAndVersion)
+TCLAP::CmdLine *CAmCommandLineSingleton::instanciateOnce(const std::string &message,
+ const char delimiter,
+ const std::string &version,
+ bool helpAndVersion)
{
- if(NULL==pSingleCmdLine)
- {
- pSingleCmdLine = new TCLAP::CmdLine(message,delimiter,version,helpAndVersion);
- }
- return pSingleCmdLine;
+ if (NULL == pSingleCmdLine)
+ {
+ pSingleCmdLine = new TCLAP::CmdLine(message, delimiter, version, helpAndVersion);
+ }
+
+ return pSingleCmdLine;
}
-TCLAP::CmdLine* CAmCommandLineSingleton::instance()
+TCLAP::CmdLine *CAmCommandLineSingleton::instance()
{
- assert(NULL!=pSingleCmdLine);
- return pSingleCmdLine;
+ assert(NULL != pSingleCmdLine);
+ return pSingleCmdLine;
}
void CAmCommandLineSingleton::deleteInstance()
{
- if (pSingleCmdLine)
- delete pSingleCmdLine;
-
- pSingleCmdLine=NULL;
+ if (pSingleCmdLine)
+ {
+ delete pSingleCmdLine;
+ }
+
+ pSingleCmdLine = NULL;
}
-CAmCommandLineSingleton::~CAmCommandLineSingleton() {
- // TODO Auto-generated destructor stub
+CAmCommandLineSingleton::~CAmCommandLineSingleton()
+{
+ // TODO Auto-generated destructor stub
}
} /* namespace am */