You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.2 KiB

  1. // base/kaldi-common.h
  2. // Copyright 2009-2011 Microsoft Corporation
  3. // See ../../COPYING for clarification regarding multiple authors
  4. //
  5. // Licensed under the Apache License, Version 2.0 (the "License");
  6. // you may not use this file except in compliance with the License.
  7. // You may obtain a copy of the License at
  8. //
  9. // http://www.apache.org/licenses/LICENSE-2.0
  10. //
  11. // THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  12. // KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
  13. // WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
  14. // MERCHANTABLITY OR NON-INFRINGEMENT.
  15. // See the Apache 2 License for the specific language governing permissions and
  16. // limitations under the License.
  17. #ifndef KALDI_BASE_KALDI_COMMON_H_
  18. #define KALDI_BASE_KALDI_COMMON_H_ 1
  19. #include <cassert>
  20. #include <cstddef>
  21. #include <cstdlib>
  22. #include <cstring> // C string stuff like strcpy
  23. #include <fstream>
  24. #include <iostream>
  25. #include <sstream>
  26. #include <stdexcept>
  27. #include <string>
  28. #include <vector>
  29. #include "base/kaldi-error.h"
  30. #include "base/kaldi-types.h"
  31. #include "base/kaldi-utils.h"
  32. // #include "base/io-funcs.h"
  33. #include "base/kaldi-math.h"
  34. // #include "base/timer.h"
  35. #endif // KALDI_BASE_KALDI_COMMON_H_