ct_common  1.0.1
Common library for combinatorial testing
src/ct_common/common/defs.h
Go to the documentation of this file.
00001 //===----- ct_common/common/defs.h ------------------------------*- C++ -*-===//
00002 //
00003 //                      The ct_common Library
00004 //
00005 // This file is distributed under the MIT license. See LICENSE for details.
00006 //
00007 //===----------------------------------------------------------------------===//
00008 //
00009 // This header file contains some basic definitions
00010 //
00011 //===----------------------------------------------------------------------===//
00012 
00013 #ifndef CT_COMMON_DEFS_H_
00014 #define CT_COMMON_DEFS_H_
00015 
00016 #include <cstddef>
00017 
00018 namespace ct {
00019 namespace common {
00020 const std::size_t PID_BOUND = std::size_t(-1);  
00021 const std::size_t VID_BOUND = std::size_t(-1);  
00022 }
00023 }
00024 
00025 #endif  // CT_COMMON_DEFS_H_
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines