ccdevnet / openc2e

openc2e

This URL has Read+Write access

openc2e / attFile.h
100644 12 lines (9 sloc) 0.223 kb
1
2
3
4
5
6
7
8
9
10
11
12
#include <fstream>
 
class attFile {
public:
unsigned int attachments[16][20];
unsigned int noattachments[16];
unsigned int nolines;
friend std::istream &operator >> (std::istream &, attFile &);
};
 
/* vim: set noet: */