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.
polkit-tqt/examples/agent/pkagentexample.cpp

23 lines
569 B

#define POLKIT_AGENT_I_KNOW_API_IS_SUBJECT_TO_CHANGE 1
#include <polkitagent/polkitagent.h>
#include "pkagentexample.h"
#include <unistd.h>
#include <tqsessionmanager.h>
#include "polkit-tqt-subject.h"
PkAgentExample::PkAgentExample(int argc, char **argv) : TQApplication(argc, argv)
{
PolkitTQt::UnixSessionSubject session(getpid());
m_listener.registerListener(session, "/org/tqt/PolicyKit1/AuthenticationAgent");
}
void PkAgentExample::commitData(TQSessionManager &sm)
{
sm.setRestartHint(TQSessionManager::RestartNever);
}
#include "pkagentexample.moc"