header file ifndefs share common prefix

This commit is contained in:
Mirek Kratochvil 2013-04-17 08:52:22 +02:00
parent 1140daf08d
commit c62c19d29d
19 changed files with 38 additions and 38 deletions

View file

@ -16,8 +16,8 @@
* along with Codecrypt. If not, see <http://www.gnu.org/licenses/>. * along with Codecrypt. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef _bvector_h_ #ifndef _ccr_bvector_h_
#define _bvector_h_ #define _ccr_bvector_h_
#include <vector> #include <vector>
#include "types.h" #include "types.h"

View file

@ -16,8 +16,8 @@
* along with Codecrypt. If not, see <http://www.gnu.org/licenses/>. * along with Codecrypt. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef _decoding_h_ #ifndef _ccr_decoding_h_
#define _decoding_h_ #define _ccr_decoding_h_
#include <vector> #include <vector>
#include "polynomial.h" #include "polynomial.h"

View file

@ -16,8 +16,8 @@
* along with Codecrypt. If not, see <http://www.gnu.org/licenses/>. * along with Codecrypt. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef _fmtseq_h_ #ifndef _ccr_fmtseq_h_
#define _fmtseq_h_ #define _ccr_fmtseq_h_
#include <vector> #include <vector>
#include <list> #include <list>

View file

@ -16,8 +16,8 @@
* along with Codecrypt. If not, see <http://www.gnu.org/licenses/>. * along with Codecrypt. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef _generator_h_ #ifndef _ccr_generator_h_
#define _generator_h_ #define _ccr_generator_h_
#include "arcfour.h" #include "arcfour.h"
#include "prng.h" #include "prng.h"

View file

@ -16,8 +16,8 @@
* along with Codecrypt. If not, see <http://www.gnu.org/licenses/>. * along with Codecrypt. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef _gf2m_h_ #ifndef _ccr_gf2m_h_
#define _gf2m_h_ #define _ccr_gf2m_h_
#include <vector> #include <vector>
#include "types.h" #include "types.h"

View file

@ -16,8 +16,8 @@
* along with Codecrypt. If not, see <http://www.gnu.org/licenses/>. * along with Codecrypt. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef _ios_h_ #ifndef _ccr_ios_h_
#define _ios_h_ #define _ccr_ios_h_
//operator overloads very useful for debugging/hacking //operator overloads very useful for debugging/hacking
#include <iostream> #include <iostream>

View file

@ -16,8 +16,8 @@
* along with Codecrypt. If not, see <http://www.gnu.org/licenses/>. * along with Codecrypt. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef _matrix_h_ #ifndef _ccr_matrix_h_
#define _matrix_h_ #define _ccr_matrix_h_
#include <vector> #include <vector>
#include "types.h" #include "types.h"

View file

@ -16,8 +16,8 @@
* along with Codecrypt. If not, see <http://www.gnu.org/licenses/>. * along with Codecrypt. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef _mce_h_ #ifndef _ccr_mce_h_
#define _mce_h_ #define _ccr_mce_h_
#include "gf2m.h" #include "gf2m.h"
#include "matrix.h" #include "matrix.h"

View file

@ -16,8 +16,8 @@
* along with Codecrypt. If not, see <http://www.gnu.org/licenses/>. * along with Codecrypt. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef _mce_qd_h_ #ifndef _ccr_mce_qd_h_
#define _mce_qd_h_ #define _ccr_mce_qd_h_
#include <vector> #include <vector>

View file

@ -16,8 +16,8 @@
* along with Codecrypt. If not, see <http://www.gnu.org/licenses/>. * along with Codecrypt. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef _nd_h_ #ifndef _ccr_nd_h_
#define _nd_h_ #define _ccr_nd_h_
#include "gf2m.h" #include "gf2m.h"
#include "matrix.h" #include "matrix.h"

View file

@ -16,8 +16,8 @@
* along with Codecrypt. If not, see <http://www.gnu.org/licenses/>. * along with Codecrypt. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef _permutation_h_ #ifndef _ccr_permutation_h_
#define _permutation_h_ #define _ccr_permutation_h_
#include <vector> #include <vector>
#include "types.h" #include "types.h"

View file

@ -16,8 +16,8 @@
* along with Codecrypt. If not, see <http://www.gnu.org/licenses/>. * along with Codecrypt. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef _polynomial_h_ #ifndef _ccr_polynomial_h_
#define _polynomial_h_ #define _ccr_polynomial_h_
#include <vector> #include <vector>
#include "types.h" #include "types.h"

View file

@ -16,8 +16,8 @@
* along with Codecrypt. If not, see <http://www.gnu.org/licenses/>. * along with Codecrypt. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef _prng_h_ #ifndef _ccr_prng_h_
#define _prng_h_ #define _ccr_prng_h_
#include "types.h" #include "types.h"

View file

@ -16,8 +16,8 @@
* along with Codecrypt. If not, see <http://www.gnu.org/licenses/>. * along with Codecrypt. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef _qdutils_h_ #ifndef _ccr_qdutils_h_
#define _qdutils_h_ #define _ccr_qdutils_h_
#include <vector> #include <vector>
#include <set> #include <set>

View file

@ -17,8 +17,8 @@
* along with Codecrypt. If not, see <http://www.gnu.org/licenses/>. * along with Codecrypt. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef _rmd_hash_h_ #ifndef _ccr_rmd_hash_h_
#define _rmd_hash_h_ #define _ccr_rmd_hash_h_
#include "hash.h" #include "hash.h"
#include "ripemd128.h" #include "ripemd128.h"

View file

@ -16,8 +16,8 @@
* along with Codecrypt. If not, see <http://www.gnu.org/licenses/>. * along with Codecrypt. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef _sencode_h_ #ifndef _ccr_sencode_h_
#define _sencode_h_ #define _ccr_sencode_h_
#include <string> #include <string>
#include <vector> #include <vector>

View file

@ -16,8 +16,8 @@
* along with Codecrypt. If not, see <http://www.gnu.org/licenses/>. * along with Codecrypt. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef _sha_hash_h_ #ifndef _ccr_sha_hash_h_
#define _sha_hash_h_ #define _ccr_sha_hash_h_
#include "hash.h" #include "hash.h"
#include "sha2.h" #include "sha2.h"

View file

@ -17,8 +17,8 @@
* along with Codecrypt. If not, see <http://www.gnu.org/licenses/>. * along with Codecrypt. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef _types_h_ #ifndef _ccr_types_h_
#define _types_h_ #define _ccr_types_h_
/* /*
* typedefs. uint should be able to comfortably hold the GF(2^m) elements of * typedefs. uint should be able to comfortably hold the GF(2^m) elements of

View file

@ -16,8 +16,8 @@
* along with Codecrypt. If not, see <http://www.gnu.org/licenses/>. * along with Codecrypt. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef _vector_item_h_ #ifndef _ccr_vector_item_h_
#define _vector_item_h_ #define _ccr_vector_item_h_
//little STL helper, because writing (*this)[i] everywhere is clumsy //little STL helper, because writing (*this)[i] everywhere is clumsy
#define _ccr_declare_vector_item \ #define _ccr_declare_vector_item \