Skip to content

Commit

Permalink
Actually make double-inclusion guards work - duh
Browse files Browse the repository at this point in the history
  • Loading branch information
hansenjo committed Jan 24, 2015
1 parent 42eea98 commit f05966a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions DataFile.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// Much simplified version of CodaFile

#ifndef PPODD_DATAFILE
#define PPODD_DATAFILE

#include <stdint.h>
#include <cstdio>
Expand Down
1 change: 1 addition & 0 deletions Decoder.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Simple decoder for event buffer read from test data file

#ifndef PPODD_DECODER
#define PPODD_DECODER

#include <stdint.h>
#include <vector>
Expand Down
1 change: 1 addition & 0 deletions Detector.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Simple detector example class

#ifndef PPODD_DETECTOR
#define PPODD_DETECTOR

#include <string>

Expand Down
1 change: 1 addition & 0 deletions Util.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#ifndef PPODD_UTIL
#define PPODD_UTIL

#include <algorithm>

Expand Down
1 change: 1 addition & 0 deletions Variable.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Simple class representing an analysis result ("global variable")

#ifndef PPODD_VARIABLE
#define PPODD_VARIABLE

#include <string>

Expand Down

0 comments on commit f05966a

Please sign in to comment.