PolyUtil.h 403 B

123456789101112131415161718192021222324252627
  1. /*
  2. * PolyUtil.h
  3. * Poly
  4. *
  5. * Created by Ivan Safrin on 9/23/08.
  6. * Copyright 2008 __MyCompanyName__. All rights reserved.
  7. *
  8. */
  9. // @package Services
  10. #pragma once
  11. #include "PolyString.h"
  12. #include "PolyGlobals.h"
  13. #include <string>
  14. #include <vector>
  15. #include <algorithm>
  16. #include <cctype>
  17. using std::string;
  18. using std::vector;
  19. namespace Polycode {
  20. class _PolyExport StringUtil {
  21. public:
  22. };
  23. }