Skip to content

Instantly share code, notes, and snippets.

@ndarilek
Created June 12, 2009 17:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ndarilek/128767 to your computer and use it in GitHub Desktop.
Save ndarilek/128767 to your computer and use it in GitHub Desktop.
package info.hermesgps.hermes.models
import org.openstreetmap.osmosis.core.domain.v0_6.{Entity => OSMEntity}
class Entity(obj:OSMEntity) {
def name {
"Entity"
}
}
implicit def osmEntityToEntity(obj:OSMEntity):Entity = new Entity(obj)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment