Main Page   Modules   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members  

/home/pauldt/projects/IDEA/IDEA-ALL/IDEA-DEV/Core/Utilities/Includes/CommandLineArguments.hh

Go to the documentation of this file.
00001 // -*- Mode: c++ -*-
00002 //      CVS: $Id: CommandLineArguments.hh,v 1.5 2005/12/30 22:06:06 rijsman Exp $
00003 //      Tag: $name$
00004 //     Info: $CVSROOT/IDEA-DEV/COPYRIGHT
00005 
00006 #ifndef COMMANDLINE_ARGUMENTS_HEADER_
00007 #define COMMANDLINE_ARGUMENTS_HEADER_
00008 
00009 #include "Singleton.hh"
00010 
00011 namespace IDEA
00012 {
00020   class CommandLineArguments:
00021     public Singleton<CommandLineArguments>
00022   {
00023     friend class Singleton< CommandLineArguments >;
00024   public:
00028     ~CommandLineArguments();
00032     void setArguments( int count, char** value );
00036     char** getValue() const;
00040     int getCount() const;
00041   private:
00045     CommandLineArguments();
00046 
00047     int m_Count;
00048     char** m_Value;
00049   };
00050 }
00051 
00052 #endif // COMMANDLINE_ARGUMENTS_HEADER_
00053  

Contact information
© IDEA
Generated on Fri Feb 3 17:09:41 2006 for IDEA.