Created
June 12, 2009 17:08
-
-
Save ndarilek/128767 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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