diff options
| author | Mike Buland <mbuland@penny-arcade.com> | 2022-04-20 11:14:47 -0700 |
|---|---|---|
| committer | Mike Buland <mbuland@penny-arcade.com> | 2022-04-20 11:14:47 -0700 |
| commit | d10e6a5ca0905f0ef2836cd98aebfb48e7f1e8a3 (patch) | |
| tree | 0235e978cc5ffa94d790a4e26b5cf1e5492cab2b /src/stable/archival.cpp | |
| parent | 819ff3d27012b4ec4a0a21c150c112a4dd28b14d (diff) | |
| download | libbu++-d10e6a5ca0905f0ef2836cd98aebfb48e7f1e8a3.tar.gz libbu++-d10e6a5ca0905f0ef2836cd98aebfb48e7f1e8a3.tar.bz2 libbu++-d10e6a5ca0905f0ef2836cd98aebfb48e7f1e8a3.tar.xz libbu++-d10e6a5ca0905f0ef2836cd98aebfb48e7f1e8a3.zip | |
ArchiveBase/Archive renamed. More to come.
Diffstat (limited to 'src/stable/archival.cpp')
| -rw-r--r-- | src/stable/archival.cpp | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/src/stable/archival.cpp b/src/stable/archival.cpp deleted file mode 100644 index 227e25d..0000000 --- a/src/stable/archival.cpp +++ /dev/null | |||
| @@ -1,35 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2007-2019 Xagasoft, All rights reserved. | ||
| 3 | * | ||
| 4 | * This file is part of the libbu++ library and is released under the | ||
| 5 | * terms of the license contained in the file LICENSE. | ||
| 6 | */ | ||
| 7 | |||
| 8 | #include "bu/archival.h" | ||
| 9 | |||
| 10 | Bu::Archival::Archival() | ||
| 11 | { | ||
| 12 | } | ||
| 13 | |||
| 14 | Bu::Archival::~Archival() | ||
| 15 | { | ||
| 16 | } | ||
| 17 | |||
| 18 | Bu::ArchiveBase &Bu::operator<<(Bu::ArchiveBase &s, const Bu::Archival &p) | ||
| 19 | { | ||
| 20 | const_cast<Bu::Archival &>(p).archive( s ); | ||
| 21 | return s; | ||
| 22 | } | ||
| 23 | |||
| 24 | Bu::ArchiveBase &Bu::operator<<(Bu::ArchiveBase &s, Bu::Archival &p) | ||
| 25 | { | ||
| 26 | p.archive( s ); | ||
| 27 | return s; | ||
| 28 | } | ||
| 29 | |||
| 30 | Bu::ArchiveBase &Bu::operator>>(Bu::ArchiveBase &s, Bu::Archival &p) | ||
| 31 | { | ||
| 32 | p.archive( s ); | ||
| 33 | return s; | ||
| 34 | } | ||
| 35 | |||
