-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #941 from aschnell/master
- make class OutputOptions reusable
- Loading branch information
Showing
3 changed files
with
48 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* Copyright (c) [2011-2015] Novell, Inc. | ||
* Copyright (c) [2016-2024] SUSE LLC | ||
* | ||
* All Rights Reserved. | ||
* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms of version 2 of the GNU General Public License 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, contact Novell, Inc. | ||
* | ||
* To contact Novell about this file by physical or electronic mail, you may | ||
* find current contact information at www.novell.com. | ||
*/ | ||
|
||
|
||
namespace snapper | ||
{ | ||
|
||
/** | ||
* Just a collection of some variables defining the output. | ||
*/ | ||
class OutputOptions | ||
{ | ||
public: | ||
|
||
OutputOptions(bool utc, bool iso, bool human) | ||
: utc(utc), iso(iso), human(human) | ||
{ | ||
} | ||
|
||
const bool utc; | ||
const bool iso; | ||
const bool human; | ||
|
||
}; | ||
|
||
} |