mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
41 lines
1.4 KiB
C++
41 lines
1.4 KiB
C++
// -*- c++ -*-
|
|
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: pqSLACActionGroup.h
|
|
|
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
|
All rights reserved.
|
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
PURPOSE. See the above copyright notice for more information.
|
|
|
|
=========================================================================*/
|
|
/*-------------------------------------------------------------------------
|
|
Copyright 2009 Sandia Corporation.
|
|
Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
|
|
the U.S. Government retains certain rights in this software.
|
|
-------------------------------------------------------------------------*/
|
|
|
|
#ifndef pqSLACActionGroup_h
|
|
#define pqSLACActionGroup_h
|
|
|
|
#include <QActionGroup>
|
|
|
|
/// Adds actions that are helpful for setting up visualization of SLAC
|
|
/// simulation result files.
|
|
class pqSLACActionGroup : public QActionGroup
|
|
{
|
|
Q_OBJECT;
|
|
public:
|
|
pqSLACActionGroup(QObject *p);
|
|
|
|
private:
|
|
pqSLACActionGroup(const pqSLACActionGroup &); // Not implemented
|
|
void operator=(const pqSLACActionGroup &); // Not implemented
|
|
};
|
|
|
|
#endif //pqSLACActionGroup_h
|