00001 /*************************************************************************** 00002 * Copyright (C) 2007 by Rick L. Vinyard, Jr. * 00003 * rvinyard@cs.nmsu.edu * 00004 * * 00005 * This file is part of the conexus library. * 00006 * * 00007 * The conexus library is free software; you can redistribute it and/or * 00008 * modify it under the terms of the GNU General Public License * 00009 * version 3 as published by the Free Software Foundation. * 00010 * * 00011 * The conexus library is distributed in the hope that it will be * 00012 * useful, but WITHOUT ANY WARRANTY; without even the implied warranty * 00013 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 00014 * General Public License for more details. * 00015 * * 00016 * You should have received a copy of the GNU General Public License * 00017 * along with this software. If not see <http://www.gnu.org/licenses/>. * 00018 ***************************************************************************/ 00019 #ifndef CONEXUSOBJECT_H 00020 #define CONEXUSOBJECT_H 00021 00022 #include <string> 00023 #include <sigc++/sigc++.h> 00024 00025 #include <conexus/pointer.h> 00026 00027 namespace Conexus 00028 { 00043 class Object: public sigc::trackable 00044 { 00045 protected: 00050 Object(const std::string& name=std::string()): m_name(name) { } 00051 00052 public: 00054 typedef ConexusPointer<Object> pointer; 00055 00057 ~Object() { } 00058 00060 const std::string& name() { return m_name; } 00061 00063 void set_name( const std::string& n ) { m_name = n; m_signal_name_changed.emit(); } 00064 00066 sigc::signal<void> signal_name_changed() { return m_signal_name_changed; } 00067 00068 private: 00070 sigc::signal<void> m_signal_name_changed; 00071 00073 std::string m_name; 00074 }; 00075 00076 } 00077 00078 #endif