36372 mbed / Mbed 2 deprecated SP14P1_skeleton

Dependencies:   AvailableMemory mbed-rtos mbed

Fork of helloaabbc by 32314 mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Parser.h Source File

Parser.h

00001 #ifndef _PARSER_H
00002 #define _PARSER_H
00003 
00004 #include "mbed.h"
00005 #include "SDF.h"
00006 #include "RingBuffer.h"
00007 
00008 using namespace std;
00009 class SDFG;
00010 class Parser{
00011 public:
00012   /*parse sdf configuration file, set the values for sdfg*/
00013   static void parseSDFG(char *path, SDFG *sdfg);
00014   /*parse input file to populate input buffer*/
00015   static void parseInput(char *path, RingBuffer *buf);
00016 };
00017 
00018 #endif