summaryrefslogtreecommitdiff
path: root/indra/llmessage/llcachename.h
diff options
context:
space:
mode:
Diffstat (limited to 'indra/llmessage/llcachename.h')
-rw-r--r--indra/llmessage/llcachename.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/indra/llmessage/llcachename.h b/indra/llmessage/llcachename.h
index ab6282966d..4eae6365bc 100644
--- a/indra/llmessage/llcachename.h
+++ b/indra/llmessage/llcachename.h
@@ -63,9 +63,12 @@ public:
void cancelCallback(const LLUUID& id, LLCacheNameCallback callback, void* user_data = NULL);
- // storing cache on disk; for viewer, in name.cache
+ // janky old format. Remove after a while. Phoenix. 2008-01-30
void importFile(FILE* fp);
- void exportFile(FILE* fp);
+
+ // storing cache on disk; for viewer, in name.cache
+ bool importFile(std::istream& istr);
+ void exportFile(std::ostream& ostr);
// If available, copies the first and last name into the strings provided.
// first must be at least DB_FIRST_NAME_BUF_SIZE characters.
@@ -104,6 +107,7 @@ public:
static LLString getDefaultName();
private:
+
class Impl;
Impl& impl;
};