stdafx.h 615 B

1234567891011121314151617181920212223242526272829
  1. #ifndef STDAFX_H
  2. #define STDAFX_H
  3. #pragma warning(disable:4786)
  4. #include <afxwin.h> // Core
  5. #include <afxcmn.h> // Common Controls
  6. #include <afxrich.h> // CRich edit
  7. #include <map>
  8. #include <list>
  9. #include <vector>
  10. #include <string>
  11. using namespace std;
  12. //some stuff that should be in std libs
  13. int atoi( const string &s );
  14. double atof( const string &s );
  15. string itoa( int n );
  16. string ftoa( float n );
  17. string tolower( const string &s );
  18. string toupper( const string &s );
  19. string fullfilename( const string &t );
  20. string filenamepath( const string &t );
  21. string filenamefile( const string &t );
  22. #endif