#ifndef FILENAME_HPP # define FILENAME_HPP # include "color.h" # include # include class FileName { public: FileName(); FileName( FileName const & src ); ~FileName(); FileName & operator=( FileName const & rhs ); // std::string getFoo() const; protected: // std::string const _foo; private: // static std::string const FileName::_bar; }; //std::ostream & operator<<(std::ostream & o, FileName const & rhs); #endif