Canola  0.8.D001
lib/program_card/functor.cc
Go to the documentation of this file.
00001 //
00002 // canola - canon canola 1614p emulator
00003 // Copyright (C) 2011 Peter Miller
00004 //
00005 // This program is free software; you can redistribute it and/or modify
00006 // it under the terms of the GNU General Public License, version 3, as
00007 // published by the Free Software Foundation.
00008 //
00009 // This program is distributed in the hope that it will be useful,
00010 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00011 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00012 // General Public License for more details.
00013 //
00014 // You should have received a copy of the GNU General Public License along
00015 // with this program. If not, see <http://www.gnu.org/licenses/>.
00016 //
00017 
00018 #include <lib/program_card/functor.h>
00019 
00020 
00021 program_card_functor::~program_card_functor()
00022 {
00023 }
00024 
00025 
00026 program_card_functor::program_card_functor()
00027 {
00028 }
00029 
00030 
00031 program_card_functor::program_card_functor(const program_card_functor &)
00032 {
00033 }
00034 
00035 
00036 program_card_functor &
00037 program_card_functor::operator=(const program_card_functor &)
00038 {
00039     return *this;
00040 }
00041 
00042 
00043 size_t
00044 program_card_functor::instructions_per_card(void)
00045     const
00046 {
00047     return 40;
00048 }
00049 
00050 
00051 void
00052 program_card_functor::set_title(const std::string &)
00053 {
00054 }
00055 
00056 
00057 void
00058 program_card_functor::set_arrow(bool)
00059 {
00060 }
00061 
00062 
00063 void
00064 program_card_functor::set_color(const std::string &)
00065 {
00066 }
00067 
00068 
00069 void
00070 program_card_functor::set_disassemble(bool)
00071 {
00072 }
00073 
00074 
00075 void
00076 program_card_functor::set_perforations(bool)
00077 {
00078 }
00079 
00080 
00081 void
00082 program_card_functor::set_trim_corners(bool)
00083 {
00084 }
00085 
00086 
00087 void
00088 program_card_functor::set_style(const std::string &)
00089 {
00090 }
00091 
00092 
00093 void
00094 program_card_functor::set_sfj_list(const std::string &)
00095 {
00096 }
00097 
00098 
00099 void
00100 program_card_functor::set_fj_list(const std::string &)
00101 {
00102 }
00103 
00104 
00105 void
00106 program_card_functor::set_memory_list(const std::string &)
00107 {
00108 }
00109 
00110 
00111 void
00112 program_card_functor::set_steps(int)
00113 {
00114 }