tahoma2d/toonz/sources/include/tstreamexception.h
Shinya Kitaoka 3bfa549e8b remove "using"
- using std::string;
- using std::wstring;
- using std::ostream;
- using std::istream;
- using std::iostream;
- using std::ostrstream;
- using std::istrstream;
- using std::fstream;
2016-04-21 16:23:15 +09:00

36 lines
741 B
C++

#ifndef TSTREAMEXCEPTION_INCLUDED
#define TSTREAMEXCEPTION_INCLUDED
#include "texception.h"
#undef DVAPI
#undef DVVAR
#ifdef TSTREAM_EXPORTS
#define DVAPI DV_EXPORT_API
#define DVVAR DV_EXPORT_VAR
#else
#define DVAPI DV_IMPORT_API
#define DVVAR DV_IMPORT_VAR
#endif
//===================================================================
class TIStream;
class TOStream;
//===================================================================
class DVAPI TIStreamException : public TException
{
public:
TIStreamException(TIStream &is);
TIStreamException(TIStream &is, const TException &e);
TIStreamException(TIStream &is, std::wstring message);
TIStreamException(TIStream &is, std::string message);
~TIStreamException();
};
#endif