ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/repos/Smersh/Person.cpp
Revision: 169
Committed: 2004-06-19T17:38:00-07:00 (21 years ago) by Douglas Thrift
File size: 299 byte(s)
Log Message:
Check in?

File Contents

# Content
1 // Smersh
2 //
3 // Douglas Thrift
4 //
5 // $Id$
6
7 #include "Person.hpp"
8
9 Person::Person(const string& sn) : name("Unknown Person")
10 {
11 if (!sn.empty())
12 {
13 // EXEC SQL SELECT name INTO :name_ :name_ind
14 // FROM people, peopleaimmap, aim
15 // WHERE people.id=pid AND aid = aim.id AND sn = LOWER(:sn_);
16 }
17 }

Properties

Name Value
svn:eol-style native
svn:keywords Id