00001 /* 00002 FALCON - The Falcon Programming Language. 00003 FILE: service.h 00004 00005 Service declaration 00006 ------------------------------------------------------------------- 00007 Author: Giancarlo Niccolai 00008 Begin: lun feb 13 2006 00009 00010 ------------------------------------------------------------------- 00011 (C) Copyright 2004: the FALCON developers (see list in AUTHORS file) 00012 00013 See LICENSE file for licensing details. 00014 */ 00015 00020 #ifndef flc_service_H 00021 #define flc_service_H 00022 00023 #include <falcon/string.h> 00024 00025 namespace Falcon { 00026 00068 class FALCON_SERVICE Service { 00069 String m_name; 00070 00071 public: 00075 Service( const String & name ); 00076 00078 virtual ~Service(); 00079 00080 const String &getServiceName() const { return m_name; } 00081 }; 00082 00083 } 00084 00085 #endif 00086 00087 /* end of service.h */