You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdemultimedia/mpeglib/example/yaf/yafcore/outputInterface.h

61 lines
1.0 KiB

/*
This class sends an output to the outputstream
Copyright (C) 1998 Martin Vogt
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Library General Public License as published by
the Free Software Foundation.
For more information look at the file COPYRIGHT in this package
*/
#ifndef __OUTPUTINTERFACE_H
#define __OUTPUTINTERFACE_H
#include <pthread.h>
#include <fstream>
#include "buffer.h"
#include <kdemacros.h>
// uncomment this for debugging the output stream
// (written to file outstream.dbg)
//#define _DEBUG_OUTPUT
class KDE_EXPORT OutputInterface {
int protocolSyntax;
int nr;
Buffer* outBuffer;
std::ostream* out;
pthread_mutex_t writeOutMut;
public:
OutputInterface(std::ostream* out);
~OutputInterface();
void flushBuffer();
void setProtocolSyntax(int proto);
void setNr(int nr);
void clearBuffer();
void appendBuffer(const char* msg);
// make this interface threadsafe
void lock();
void unlock();
};
#endif