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