File: defaults.h

package info (click to toggle)
bagel 1.2.2-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 134,940 kB
  • sloc: cpp: 1,236,571; javascript: 15,383; python: 1,461; ansic: 674; makefile: 253; sh: 109
file content (34 lines) | stat: -rw-r--r-- 441 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
 * defaults.h
 *
 *  Created on: Dec 19, 2013
 *      Author: evaleev
 */

#ifndef BTAS_DEFAULTS_H_
#define BTAS_DEFAULTS_H_

//
//  Default types
//

#include <btas/range.h>
#include <btas/varray/varray.h>

namespace btas {

namespace DEFAULT {

/// default storage class
template<typename _T>
using storage = std::vector<_T>;

/// default range type
using range = btas::Range;

} // namespace DEFAULT

}


#endif /* BTAS_DEFAULTS_H_ */