mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-11 07:05:48 +01:00
Initial import of CVS-v2_8_branch
This commit is contained in:
72
web/rdxport/rdxport.h
Normal file
72
web/rdxport/rdxport.h
Normal file
@@ -0,0 +1,72 @@
|
||||
// rdxport.h
|
||||
//
|
||||
// Rivendell web service portal
|
||||
//
|
||||
// (C) Copyright 2010 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $Id: rdxport.h,v 1.7.2.3 2013/10/14 04:23:54 cvs Exp $
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License version 2 as
|
||||
// published by the Free Software Foundation.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public
|
||||
// License along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
|
||||
#ifndef RDXPORT_H
|
||||
#define RDXPORT_H
|
||||
|
||||
#include <qobject.h>
|
||||
|
||||
#include <rdconfig.h>
|
||||
#include <rduser.h>
|
||||
#include <rdsystem.h>
|
||||
|
||||
class Xport : public QObject
|
||||
{
|
||||
public:
|
||||
Xport(QObject *parent=0,const char *name=0);
|
||||
|
||||
private:
|
||||
bool Authenticate();
|
||||
void Export();
|
||||
void Import();
|
||||
void DeleteAudio();
|
||||
void AddCart();
|
||||
void ListCarts();
|
||||
void ListCart();
|
||||
void EditCart();
|
||||
void RemoveCart();
|
||||
void AddCut();
|
||||
void ListCuts();
|
||||
void ListCut();
|
||||
void EditCut();
|
||||
void RemoveCut();
|
||||
void ListGroups();
|
||||
void ListGroup();
|
||||
void ExportPeaks();
|
||||
void TrimAudio();
|
||||
void CopyAudio();
|
||||
void AudioInfo();
|
||||
void ListLogs();
|
||||
void ListLog();
|
||||
void ListServices();
|
||||
void Exit(int code);
|
||||
void XmlExit(const QString &str,int code,
|
||||
RDAudioConvert::ErrorCode err=RDAudioConvert::ErrorOk);
|
||||
RDFormPost *xport_post;
|
||||
RDUser *xport_user;
|
||||
RDConfig *xport_config;
|
||||
RDSystem *xport_system;
|
||||
};
|
||||
|
||||
|
||||
#endif // RDXPORT_H
|
||||
Reference in New Issue
Block a user