~tomprogs/gewoopi/trunk

« back to all changes in this revision

Viewing changes to include/gewoopi/core/vfs/ifstream.hpp

  • Committer: Thomas Geymayer
  • Date: 2010-03-26 11:56:05 UTC
  • Revision ID: tomgey@gmail.com-20100326115605-iir4j91614620ij3
Fixed .obj loading, enable grabbing and general cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
108
108
 
109
109
  class ifstream:
110
110
    public boost::iostreams::stream_buffer<internal::ifstream_device>,
111
 
    public std::basic_istream<internal::ifstream_device::char_type>,
112
 
    public utilities::safe_bool<ifstream>
 
111
    public std::basic_istream<internal::ifstream_device::char_type>
113
112
  {
114
113
    public:
115
114
 
125
124
 
126
125
      explicit ifstream( const path& file_path );
127
126
 
128
 
      //------------------------------------------------------------------------
129
 
 
130
 
      bool operator_bool() const;
131
 
 
132
127
  };
133
128
 
134
129
} // namespace vfs