32 lines
450 B
C++
32 lines
450 B
C++
#ifndef FILENAME_HPP
|
|
# define FILENAME_HPP
|
|
|
|
# include "color.h"
|
|
# include <iostream>
|
|
# include <string>
|
|
|
|
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
|