aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications
diff options
context:
space:
mode:
authorSean Dague2008-05-01 18:36:43 +0000
committerSean Dague2008-05-01 18:36:43 +0000
commit70f7672dad3534f215396a578fc13f5628e45310 (patch)
tree49cc5a4ea03bb0b7d67f7859d93036aaf1208802 /OpenSim/Region/Communications
parentLoad grid list in LaunchSLClient from .ini file at run-time. (diff)
downloadopensim-SC_OLD-70f7672dad3534f215396a578fc13f5628e45310.zip
opensim-SC_OLD-70f7672dad3534f215396a578fc13f5628e45310.tar.gz
opensim-SC_OLD-70f7672dad3534f215396a578fc13f5628e45310.tar.bz2
opensim-SC_OLD-70f7672dad3534f215396a578fc13f5628e45310.tar.xz
added in IUserService functions. These don't do anything yet,
but the set all compiles together fine, and it provides people an idea of where we are heading.
Diffstat (limited to 'OpenSim/Region/Communications')
-rw-r--r--OpenSim/Region/Communications/OGS1/OGS1UserServices.cs28
1 files changed, 28 insertions, 0 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs
index 643d15b..dd7db62 100644
--- a/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs
+++ b/OpenSim/Region/Communications/OGS1/OGS1UserServices.cs
@@ -547,5 +547,33 @@ namespace OpenSim.Region.Communications.OGS1
547 } 547 }
548 548
549 #endregion 549 #endregion
550
551 /// Appearance
552 /// TODO: stubs for now to get us to a compiling state gently
553 public UserAppearance GetUserAppearance(LLUUID user)
554 {
555 return new UserAppearance();
556 }
557
558 public void UpdateUserAppearance(LLUUID user, UserAppearance appearance)
559 {
560 return;
561 }
562
563 public void AddAttachment(LLUUID user, LLUUID item)
564 {
565 return;
566 }
567
568 public void RemoveAttachment(LLUUID user, LLUUID item)
569 {
570 return;
571 }
572
573 public List<LLUUID> GetAttachments(LLUUID user)
574 {
575 return new List<LLUUID>();
576 }
577
550 } 578 }
551} 579}