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.
ksquirrel/ksquirrel/sidebar/sq_storagefile.h

35 lines
1.4 KiB

/***************************************************************************
sq_storagefile.h - description
-------------------
begin : Sat Mar 3 2007
copyright : (C) 2007 by Baryshev Dmitry
email : ksquirrel.iv@gmail.com
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef SQ_STORAGEFILE_H
#define SQ_STORAGEFILE_H
#include <tqstring.h>
#include <kurl.h>
namespace SQ_StorageFile
{
void writeStorageFile(const TQString &path, const KURL &inpath, KURL w = KURL());
void writeStorageFileAsString(const TQString &path, const KURL &inpath, TQString content = TQString());
KURL readStorageFile(const TQString &path);
TQString readStorageFileAsString(const TQString &path);
};
#endif