ostinato/client/stream.h
Srivats P. c7d90ff1ab - All tabs converted to spaces in all files
- .vimrc added to reflect settings used in the project
2009-12-28 08:31:28 +00:00

24 lines
376 B
C++

#ifndef _STREAM_H
#define _STREAM_H
#include <QtGlobal>
#include <QString>
#include <QList>
#include "../common/protocol.pb.h"
#include "../common/streambase.h"
class Stream : public StreamBase {
//quint32 mId;
public:
Stream();
~Stream();
void loadProtocolWidgets();
void storeProtocolWidgets();
};
#endif