Unified Code Counter (UCC) by the USC Center for Systems and Software Engineering, SLOC counter sources
http://csse.usc.edu/ucc_new/wordpress/
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.
25 lines
319 B
25 lines
319 B
//! GUtil class definitions.
|
|
/*!
|
|
* \file GUtil.h
|
|
*
|
|
* This file contains the GUtil class definition.
|
|
*/
|
|
|
|
#ifndef GUTIL_H
|
|
#define GUTIL_H
|
|
|
|
#include <QString>
|
|
|
|
//! Utility class.
|
|
/*!
|
|
* \class GUtil
|
|
*
|
|
* Defines a utility class.
|
|
*/
|
|
class GUtil
|
|
{
|
|
public:
|
|
static bool openFile(const QString &filePath);
|
|
};
|
|
|
|
#endif // GUTIL_H
|