/*************************************************************************** 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 #include 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