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.
kile/src/kile/kileuntitled.h

32 lines
508 B

//
// C++ Interface: kileuntitled
//
// Description:
//
//
// Author: Jeroen Wijnhout <Jeroen.Wijnhout@kdemail.net>, (C) 2005
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef KILEUNTITLED_H
#define KILEUNTITLED_H
#include <tqstring.h>
class KileUntitled
{
public:
static bool isUntitled(const TQString &str);
static TQString next();
static TQString current();
private:
static TQString m_untitled;
static int m_last;
};
#endif // KILEUNTITLED_H